home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / ARASAN_S.ZIP / BOOKENTR.CPP < prev    next >
C/C++ Source or Header  |  1993-11-17  |  344b  |  14 lines

  1. // Copyright 1993 by Jon Dart.  All Rights Reserved.
  2.  
  3. #include "bookentr.h"
  4.  
  5. Book_Entry::Book_Entry( unsigned long hc, byte rec, byte mv_indx, unsigned nxt )
  6.   : hash_code(hc), recommend(rec), move_index(mv_indx), next(nxt)
  7. {
  8. }
  9.  
  10. int Book_Entry::operator == ( const Book_Entry & be) const
  11. {
  12.    return (hash_code == be.hash_code);
  13. }
  14.